7a93cbc2e556629191b02b4120bb27358ef25cb8,org.erlide.util/xtend-gen/org/erlide/util/HostnameChecker.java,HostnameChecker,loadErlideHosts,#String#,386
Before Change
_and = false;
} else {
boolean _or = false;
boolean _canUseLongNames = this.canUseLongNames();
if (_canUseLongNames) {
_or = true;
} else {
boolean _canUseShortNames = this.canUseShortNames();
_or = _canUseShortNames;
}
_and = _or;
}
_xblockexpression = _and;
}
return _xblockexpression;
}
After Change
this.longName = _property;
String _property_1 = props.getProperty("short", null);
this.shortName = _property_1;
_xblockexpression = (loaded && (this.canUseLongNames() || this.canUseShortNames()));
}
return _xblockexpression;
}